Chart3D for WPF and Silverlight > Using Chart3D for WPF and Silverlight > Data Layout in GridDataSeries |
Data in Chart3D for WPF and Silverlight is defined in the GridDataSeries class. It provides the following properties related to data:
Property | Description |
ZData | Gets or sets two-dimensional array of values on the grid. |
Start | Gets or sets the start point of data. |
Step | Gets or sets the step of grid data. |
ContourData | Gets or sets two-dimensional array of contour data (4-dimensional chart). |
The first index of the 2D array in the ZData/ ContourData properties corresponds to the X and the second index corresponds to the Y. The layout for ZData is shown in the following table.
The element of the array ZData[0,0] corresponds to the point (Start.X, Start.Y), ZData[1,0] is the z-value at (Start.X+Step.X, Start.Y), and so on.